Use zscript to initialize
From Documentation
This documentation is for an older version of ZK. For the latest one, please click here.
In Page Initial Phase, ZK processes the processing instructions, called init
.
Use zscript
to init the page,simply specify a file containing the scripting codes with the zscript attribute, as follows. Then, the file will be interpreted at the Page Initial phase.
For example:
<?init zscript="/my/init.zs"?>
Notice that the page is not yet attached to the desktop when the Page Initial phase executes.
Use java to init the page, simply specify a class with class attribute, an instance of the specified class is constructed, and then its doInit
method is called.
For example:
<?init class="MyInit"?>